make indentation perfect

Judy Ngai преди 9 години
родител
ревизия
19dc6e3324
променени са 1 файла, в които са добавени 1 реда и са изтрити 4 реда
  1. 1 4
      spec/models/agents/twitter_favorites_spec.rb

+ 1 - 4
spec/models/agents/twitter_favorites_spec.rb

@@ -6,7 +6,6 @@ describe Agents::TwitterFavorites do
6 6
   end
7 7
 
8 8
   before do
9
-
10 9
     @opts = {:username => "tectonic", :number => "10", :history => "100", :expected_update_period_in_days => "2", :starting_at => "Sat Feb 20 01:32:08 +0000 2016"}
11 10
 
12 11
     @agent = Agents::TwitterFavorites.new(name: "tectonic", options: @opts)
@@ -28,14 +27,12 @@ describe Agents::TwitterFavorites do
28 27
   end
29 28
 
30 29
   describe "making sure check method works" do
31
-
32 30
     it "expect change method to change event" do
33
-     expect { @agent.check }.to change {Event.count}.by(3)
31
+      expect { @agent.check }.to change {Event.count}.by(3)
34 32
     end
35 33
   end
36 34
 
37 35
   describe "#check with starting_at=future date" do
38
-
39 36
     it "should check for changes starting_at a future date, thus not find any" do
40 37
       opts = @opts.merge({ starting_at: "Thurs Feb 23 16:12:04 +0000 2017" })
41 38